home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / video / fly8111-.000 / fly8111- / fly8 / sed1.bat < prev    next >
DOS Batch File  |  1979-12-31  |  193b  |  13 lines

  1. @echo off
  2. if not exist %1.sed goto err
  3. if not exist %2     goto err
  4. if "" == "%3"       goto err
  5. sed -f %1.sed <%2 >%3
  6. goto end
  7.  
  8. :err
  9. echo usage: sed1 CommandFile InFile OutFile
  10. goto end
  11.  
  12. :end
  13.